Fix currency display in Stash page - #355
Merged
Merged
Conversation
…low) Three small fixes: 1. Changelog URL typo: Changed /versions to /#versions in updates carousel - The Forge URL path segment /versions 404s; should be a hash anchor 2. Headless restart redirect: Force restart now redirects to main list page - Non-HTMX fallback was redirecting to individual client page - Now matches graceful restart behavior (redirect to /quma/headless) 3. Action buttons overflow: Added min-width to .action-buttons class - Headless table buttons were overflowing their container - Added min-width: 10rem to prevent 4-button overflow Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
… rouble conversion Currency items (USD, EUR) were incorrectly displayed as rouble-converted values on the Stash page. Now they display with proper currency symbols (₽, $, €) and show the actual currency count instead of exchange values. Changes: - Add currency_type field to StashItemDisplay to track currency type - Detect currency items by template ID in stash handler - Update stash template to conditionally render currency symbols and counts - Remove completed bug from TODO.md Implemented with the help of Claude Code
…isplay - Added format_number Askama filter that formats integers with thousand separators - Currency counts now display as "$ 500,000" instead of "$ 500000" - Money category header now shows per-currency subtotals (₽X / $Y / €Z) instead of rouble-converted total - Other categories continue to show rouble-converted totals Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
cebarks
enabled auto-merge (squash)
July 29, 2026 04:31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
currency_typefield toStashItemDisplaystruct to track currency type5449016a4bdc2d6f08b456f6, USD:5696686a4bdc2da3298b456a, EUR:569668774bdc2da2298b4568)Test plan
Implemented with the help of Claude Code